type Variant = 'info' | 'success' | 'warning' | 'error'; interface Props { children?: import('svelte').Snippet; icon?: import('svelte').Snippet; variant?: Variant; id?: string; class?: string; live?: 'polite' | 'assertive' | 'off'; role?: 'status' | 'alert' | undefined; 'aria-label'?: string; } declare const InlineMessage: import("svelte").Component; type InlineMessage = ReturnType; export default InlineMessage;