import { Styles } from '@wolf-tui/core'; export type OptionTheme = { styles: { option: (state: { isFocused: boolean; }) => { style: Partial; }; focusIndicator: () => { style: Partial; }; label: (state: { isFocused: boolean; isSelected: boolean; }) => { style: Partial; }; selectedIndicator: () => { style: Partial; }; }; }; export declare const defaultOptionTheme: { styles: { option: ({ isFocused }: { isFocused: boolean; }) => { style: { gap: number; paddingLeft: number; }; }; focusIndicator: () => { style: { color: string; }; }; label: ({ isFocused, isSelected, }: { isFocused: boolean; isSelected: boolean; }) => { style: { color: string | undefined; }; }; selectedIndicator: () => { style: { color: string; }; }; }; }; //# sourceMappingURL=option-theme.d.ts.map