import { PaginationProps } from 'antd'; import React, { CSSProperties } from 'react'; export interface Props { count?: number; loading?: boolean; className?: string; style?: CSSProperties; pagination?: PaginationProps | boolean; empty?: React.ReactNode; } export type RefInternalGridList = (props: React.PropsWithChildren & { ref?: React.Ref; }) => React.ReactElement; declare const _default: React.MemoExoticComponent>>; export default _default;