import { IButton } from './button.interface'; export declare class ButtonSharedComponent { button: IButton; disabled: boolean; btnSize: 'large' | 'medium' | 'xsmall' | 'small'; btnStyle: 'secondary' | 'tertiary'; btnShadow: boolean; btnType: 'submit' | 'button' | 'reset'; fullWidth: boolean; label: string; labelSecondary: string; loading: boolean; readonly type: string; }