export interface CommandPaletteItemTheme {
    /** CSS class applied to the root command palette item. */
    base: string;
    /** CSS class applied when the item is active or highlighted. */
    active: string;
    /** CSS class applied when the item is clickable. */
    clickable: string;
}
export declare const commandPaletteItemTheme: CommandPaletteItemTheme;
