import React from 'react'; import { Props } from './Button'; declare const meta: { component: React.ForwardRefExoticComponent>; title: string; decorators: ((...args: any) => any)[]; argTypes: { kind: { control: { type: string; options: (string | undefined)[]; }; }; appearance: { control: { type: string; options: (string | undefined)[]; }; }; size: { control: { type: string; options: (string | undefined)[]; }; }; }; }; export default meta; export declare const ButtonStory: { (args: Props): JSX.Element; args: { kind: string; size: string; appearance: undefined; to: string; fill: boolean; loading: boolean; loadingLabel: string; accessibilityLabel: string; disabled: boolean; }; story: { name: string; }; }; export declare const AllButtons: () => JSX.Element;