import * as react_jsx_runtime from 'react/jsx-runtime';
import { SlotsToClasses, BlankStateSlots, BlankStateVariantProps } from '@kopexa/theme';
import { ComponentProps } from 'react';

type Props = {
    icon?: React.ReactNode;
    title?: string;
    description?: string;
    classNames?: SlotsToClasses<BlankStateSlots>;
};
type BlankstateProps = ComponentProps<"div"> & Props & BlankStateVariantProps;
declare const Blankstate: (props: BlankstateProps) => react_jsx_runtime.JSX.Element;

export { Blankstate, type BlankstateProps };
