rsuite
Version:
A suite of react components
8 lines (7 loc) • 351 B
TypeScript
import { WithAsProps } from '../../internals/types';
import type { PlainDate } from '../../internals/utils/date';
export interface GridProps extends WithAsProps {
rows: readonly PlainDate[];
}
declare const Grid: import("../../internals/types").InternalRefForwardingComponent<"div", GridProps, never> & Record<string, never>;
export default Grid;