import React from 'react';
interface Props {
    kind?: 'info' | 'warning' | 'error' | 'success';
    title?: React.ReactNode;
    subtitle?: React.ReactNode;
    isPersisted?: boolean;
    onAction?: () => void;
    actionTitle?: string;
}
export declare function Snackbar(props: Props): React.JSX.Element;
export {};
//# sourceMappingURL=Snackbar.d.ts.map