/// <reference types="react" />
import { StandardListProps } from '../../components/StandardList/index';
import { InternalCurdBox } from '../CurdBox';
declare type NoDataStandardTableProps<T> = Omit<StandardListProps<T>, 'data'>;
export interface CustomStandardListProps<T extends {
    id: number | string;
}> extends NoDataStandardTableProps<T> {
    renderActions?: InternalCurdBox<T>['renderActions'];
    handleDataChange?: InternalCurdBox<T>['handleDataChange'];
}
export default function CustomStandardList<T extends {
    id: number | string;
}>(props: CustomStandardListProps<T>): JSX.Element;
export {};
