/// declare type DescriptionProps = { loading?: boolean; start?: number; end?: number; total?: number; items?: string; }; declare function Description({ start, end, total, items }: DescriptionProps): JSX.Element; declare namespace Description { var displayName: string; } export default Description;