import { BoxProps, ButtonProps, CardWithButtonProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface LegalNoticeCardsListProps extends BoxProps { legalNotices: Omit[]; seeMoreLegalNotices?: ButtonProps; variablesForQuery?: { slug?: string; endCursor: string | null; hasNextPage: boolean; }; } export declare const LegalNoticeCardsList: React.FC;