import { QRL } from '@builder.io/qwik'; export interface AddButtonProps { /** * ID of the button. */ id?: string; /** * CSS class to apply to the button. */ class?: string; /** * Callback function to be called when the button is clicked. */ onClick$?: QRL<(event: Event) => void>; /** * Whether the button is disabled. */ disabled?: boolean; /** * Text to display on the button. Default is 'Add'. */ text?: string; /** * Size of the icon in pixels if icon is provided in the props. Default is 18. */ iconSize?: number; } export declare const AddButton: import("@builder.io/qwik").Component;