import type React from 'react'; import type { Theme } from '@elliemae/pui-theme'; export interface MobileCardProps { children: React.ReactNode | React.ReactNode[]; height: 's' | 'm'; leftAddOn: JSX.Element | JSX.Element[]; leftProp: JSX.Element | JSX.Element[]; rightProp: JSX.Element[]; subText: string[]; subIcons: JSX.Element | JSX.Element[]; details: string[]; theme: Theme; value: number; expandable: boolean; expandedContent: JSX.Element | JSX.Element[]; cardContent: JSX.Element | JSX.Element[]; } export declare const cardPropsTypes: { /** * card height */ height: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * Defines mobile card title */ children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * Wheter if the card is expandable or not */ expandable: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * content to display in expand card section */ expandedContent: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * Icon to the left of the card. Size is adjusted automatically. */ leftAddOn: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * Pass an element to render left. For example a Button with an icon */ leftProp: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * Pass an array of 1 or 2 elements to render right. For example a Button with an icon */ rightProp: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * Pass an array of 1 or 2 strings */ subText: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * SubIcons component */ subIcons: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; /** * Pass an array of 1, 2 or 3 strings */ details: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; theme: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; value: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; cardContent: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT; };