export { default as BaseButton } from "./shared/Button.svelte"; import type { SharedProps } from "@gradio/utils"; import type { FileData } from "client/js/src"; interface ButtonProps { value: string | null; variant: "primary" | "secondary" | "stop"; size: "sm" | "md" | "lg"; link: string | null; icon: FileData | null; link_target: "_self" | "_blank"; elem_id: string | null; elem_classes?: string[]; } type $$ComponentProps = { shared_props: SharedProps; props: ButtonProps; }; declare const Index: import("svelte").Component<$$ComponentProps, {}, "">; type Index = ReturnType; export default Index;