import { UseDrawerDescription } from '../../types/crud-table';
export default function <T = Record<string, any>>(props: UseDrawerDescription<T>): {
    openDescription: (data: T) => void;
    closeDescription: () => void;
    descriptionDom: import("react/jsx-runtime").JSX.Element;
};
