import { type FileData } from "@gradio/client"; import { type Snippet } from "svelte"; type $$ComponentProps = { elem_id?: string | null; elem_classes?: string[] | null; visible?: boolean | "hidden"; variant?: "primary" | "secondary" | "stop" | "huggingface"; size?: "sm" | "md" | "lg"; value?: string | null; link?: string | null; link_target?: "_self" | "_blank" | "_parent" | "_top"; icon?: FileData | null; disabled?: boolean; scale?: number | null; min_width?: number | null | undefined; onclick?: () => void; children?: Snippet; }; declare const Button: import("svelte").Component<$$ComponentProps, {}, "">; type Button = ReturnType; export default Button;