/// export interface DTableExpandProps extends React.ButtonHTMLAttributes { dExpand?: boolean; onExpandChange?: (expand: boolean) => void; } export declare function DTableExpand(props: DTableExpandProps): JSX.Element | null;