export interface ButtonConfigInterface { /** * Specifies a handler that is called when a button is clicked. */ onClick?: () => void; /** * Specifies the icon to be displayed on the button. */ iconSvg?: string; /** * Specifies the description to be displayed on the button. */ description?: string; } export declare const defaultButtonConfig: ButtonConfigInterface;