import { FC, ReactNode } from 'react';
interface BlankSlateProps {
    children: ReactNode;
    variant?: 'normal' | 'border';
    title: String;
    className?: string;
    [key: string]: any;
}
interface BlankSlateChildrenProps {
    children: ReactNode;
}
declare const BlankSlate: FC<BlankSlateProps> & {
    Description: FC<BlankSlateChildrenProps>;
    Actions: FC<BlankSlateChildrenProps>;
    Visual: FC<BlankSlateChildrenProps>;
};
export default BlankSlate;
export type { BlankSlateProps, BlankSlateChildrenProps };
//# sourceMappingURL=BlankSlate.d.ts.map