import type { CommandProvider } from './command-provider.js';
export * from './command-palette-input.js';
export * from './command-palette-manager.js';
export * from './command-palette-suggestion-list.js';
export * from './command-provider.js';
export interface CommandPaletteProps {
    commandProviders: CommandProvider[];
    defaultPrefix: string;
    style?: Partial<CSSStyleDeclaration>;
    fullScreenSuggestions?: boolean;
}
export declare const CommandPalette: (props: CommandPaletteProps & Omit<Partial<HTMLElement>, "style"> & {
    style?: Partial<CSSStyleDeclaration>;
}, children?: import("@furystack/shades").ChildrenList) => JSX.Element;
//# sourceMappingURL=index.d.ts.map