type MakeDataParams = { length?: number; }; export declare const makeData: (props?: MakeDataParams) => { id: string; name: string; }[]; export {};