/// <reference types="react" />
import './snakebar.scss';
/**
 * @specs https://m3.material.io/components/snackbar/specs
 */
export declare const Snakebar: import("react").ForwardRefExoticComponent<{
    children?: React.ReactNode;
    action?: React.ReactNode;
    onCloseClick?: (() => void) | undefined;
    onActionClick?: (() => void) | undefined;
    thirdLine?: boolean | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "action" | "children" | "onCloseClick" | "onActionClick" | "thirdLine"> & import("react").RefAttributes<HTMLDivElement>>;
