import type { ButtonView } from './types';
declare const Button: import("svelte").Component<ButtonView, {}, "disabled">;
type Button = ReturnType<typeof Button>;
export default Button;
