import { SvelteComponentTyped } from "svelte";
import { scale } from 'svelte/transition';
declare const __propDef: {
    props: {
        class?: string | undefined;
        absolute?: boolean | undefined;
        active?: boolean | undefined;
        top?: boolean | undefined;
        left?: boolean | undefined;
        bottom?: boolean | undefined;
        right?: boolean | undefined;
        center?: boolean | undefined;
        offsetX?: string | undefined;
        offsetY?: string | undefined;
        outlined?: boolean | undefined;
        text?: boolean | undefined;
        rounded?: boolean | undefined;
        tile?: boolean | undefined;
        transition?: typeof scale | undefined;
        timeout?: number | undefined;
        style?: string | undefined;
    };
    events: {
        introstart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
        outrostart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
        introend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
        outroend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent<EventTarget> | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export declare type SnackbarProps = typeof __propDef.props;
export declare type SnackbarEvents = typeof __propDef.events;
export declare type SnackbarSlots = typeof __propDef.slots;
export default class Snackbar extends SvelteComponentTyped<SnackbarProps, SnackbarEvents, SnackbarSlots> {
}
export {};
