import { StylingModel } from '../style/styling.model'; import { CoreStylingModel } from '../core/core-styling.model'; export declare class SelectStylingModel extends CoreStylingModel { /** * Styling of select trigger by StylingModel */ select?: StylingModel; /** * Styling of filter by StylingModel */ filter?: StylingModel; /** * Styling of options by StylingModel */ options?: StylingModel; /** * Styling of static placeholder by StylingModel */ staticPlaceholder?: StylingModel; /** * Styling of dropdown panel by StylingModel */ dropdownPanel?: StylingModel; /**@hidden */ constructor(values?: Object); }