import { LayoutType, SelectProps, TextProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface ArchivePdfListProps { layout: LayoutType; title: string; selectorsLabel: TextProps; editionSelector: SelectProps; editions?: { name?: string; href?: string; }[]; monthSelector?: SelectProps; variant?: 'archivesByYear' | 'archivesByDay'; variablesForQuery?: { brandId: string; year: string; }; enabled: boolean; } export declare const ArchivePdfList: React.FC;