export declare const DEFAULT_CLASS = "govuk-summary-card"; export declare const DEFAULT_LIST_CLASS = "govuk-summary-list"; export declare const DEFAULT_TITLE = "Item"; export declare const DEFAULT_CHANGE_BUTTON_LABEL = "Change"; export declare const DEFAULT_DELETE_BUTTON_LABEL = "Delete"; export declare const DEFAULT_CHANGE_BUTTON_CLASS = "secondary"; export declare const DEFAULT_DELETE_BUTTON_CLASS = "warning"; interface RenderListViewProps { id: string; entryData: { id: string; index: number; }; config: { className?: string; banners?: string[] | any[]; title?: string; changeAction: { label?: string; page: string; classModifiers?: string; }; deleteAction?: { label?: string; classModifiers?: string; }; listView?: boolean; }; onFullEdit: Function; onDelete: Function; masterPage: { childPages: [ { components: any[]; } ]; }; classModifiers?: string | string[]; optionalFieldPlaceholder?: string; } declare const RenderListView: ({ id, entryData, config, onFullEdit, onDelete, masterPage, classModifiers, optionalFieldPlaceholder }: RenderListViewProps) => import("react/jsx-runtime").JSX.Element; export default RenderListView;