You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
475 B
15 lines
475 B
import { Component } from '../../core';
|
|
import type { OptionOptions, OptionStyleProps } from './types';
|
|
export declare class Option extends Component<OptionStyleProps> {
|
|
static defaultOptions: OptionOptions;
|
|
private hoverColor;
|
|
private selectedColor;
|
|
private background;
|
|
private label;
|
|
private get padding();
|
|
private renderLabel;
|
|
private renderBackground;
|
|
constructor(options: OptionOptions);
|
|
render(): void;
|
|
bindEvents(): void;
|
|
}
|
|
|