import { type ReactNode } from "react"; interface SearchButtonProps { className?: string; onClick?: () => void; } export declare const SearchButton: ({ className, onClick }: SearchButtonProps) => import("react/jsx-runtime").JSX.Element; export declare const ThemeToggle: () => import("react/jsx-runtime").JSX.Element; export declare const LanguageSelector: () => import("react/jsx-runtime").JSX.Element | null; interface AskAIButtonProps { children?: ReactNode; className?: string; disabled?: boolean; prompt?: string; size?: "tiny" | "small" | "medium" | "large" | null; variant?: "default" | "secondary" | "tertiary"; } export declare const AskAIButton: ({ children, className, prompt, size, variant, ...props }: AskAIButtonProps) => import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=controls.d.ts.map