import { IconName } from '@monkvision/common-ui-web'; /** * Props accepted by the PageLayoutItem component. */ export interface PageLayoutItemProps { /** * The name of the item icon. */ icon: IconName; /** * The title of the item. */ title: string; /** * The description of the item. */ description: string; } /** * A custom list item that is displayed in VideoCapture Intro screens. */ export declare function PageLayoutItem({ icon, title, description }: PageLayoutItemProps): import("react").JSX.Element;