interface Props { children?: import('svelte').Snippet; 'aria-label': string; 'aria-labelledby'?: string; 'aria-describedby'?: string; 'aria-pressed'?: boolean; 'aria-expanded'?: boolean; 'aria-controls'?: string; 'aria-haspopup'?: boolean | 'true' | 'false' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog'; type?: 'button' | 'submit' | 'reset'; disabled?: boolean; class?: string; style?: string; onclick?: (e: MouseEvent) => void; onkeydown?: (e: KeyboardEvent) => void; } declare const IconButton: import("svelte").Component; type IconButton = ReturnType; export default IconButton;