import { Button } from './button.js'; import { ReactEventHandler, ReactNode } from 'react'; import { InferComponentProps } from './types.js'; export declare const StyledBackButton: typeof Button; export declare const StyledCDNAsset: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit & import("react").ImgHTMLAttributes, never>, never>> & string; type ContentProps = { hasImage?: boolean; }; declare const Content: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components/dist/types.js").Substitute, HTMLDivElement>, ContentProps>> & string; type StandardCardLoadingContentProps = InferComponentProps & { imageFilename?: string; directory?: string; title?: string; }; export declare const StandardCardLoadingContent: { ({ imageFilename, directory, title, ...props }: StandardCardLoadingContentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export declare const StandardCardBackButton: typeof Button; declare const StyledHeader: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; declare const StyledFooter: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; type StandardCardHeaderProps = InferComponentProps & { label?: string; title?: string; children?: ReactNode; }; export declare const StandardCardHeader: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string> & { label?: string; title?: string; children?: ReactNode; }, never>> & string & Omit<({ children, label, title, ...remainingProps }: StandardCardHeaderProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component>; type StandardCardHighlightedHeaderProps = { highlightColor?: string; }; export declare const StandardCardHighlightedHeader: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components/dist/types.js").Substitute, HTMLDivElement>, StandardCardHighlightedHeaderProps>> & string; type ButtonProps = InferComponentProps; type StandardCardFooterProps = InferComponentProps & { children?: ReactNode; actionText?: ReactNode; actionForm?: string; actionDataTestId?: string; actionHref?: string; actionButtonType?: ButtonProps['type']; onAction?: ReactEventHandler; isActionDisabled?: boolean; isLoading?: boolean; onBack?: ReactEventHandler; backText?: string; backHref?: string; actionTarget?: string; v2Footer?: boolean; buttonProps?: ButtonProps; }; export declare const StandardCardFooter: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components/dist/types.js").Substitute, HTMLDivElement>, never>> & string> & { children?: ReactNode; actionText?: ReactNode; actionForm?: string; actionDataTestId?: string; actionHref?: string; actionButtonType?: ButtonProps["type"]; onAction?: ReactEventHandler; isActionDisabled?: boolean; isLoading?: boolean; onBack?: ReactEventHandler; backText?: string; backHref?: string; actionTarget?: string; v2Footer?: boolean; buttonProps?: ButtonProps; }, StandardCardFooterProps>> & string & Omit<({ actionText, actionForm, actionButtonType, actionDataTestId, onAction, actionHref, isActionDisabled, isLoading, onBack, backText, backHref, actionTarget, v2Footer, children, buttonProps, ...remainingProps }: StandardCardFooterProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component>; export declare const StandardCardFocusedContent: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export declare const StandardCardTermsFooter: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLElement>, never>> & string; type StandardCardProps = { isFocused?: boolean; highlightColor?: string; }; declare const Card: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components/dist/types.js").Substitute, HTMLDivElement>, StandardCardProps>> & string; type StandardCardType = typeof Card & { Header: typeof StandardCardHeader; HighlightedHeader: typeof StandardCardHighlightedHeader; Footer: typeof StandardCardFooter; BackButton: typeof StandardCardBackButton; FocusedContent: typeof StandardCardFocusedContent; LoadingContent: typeof StandardCardLoadingContent; TermsFooter: typeof StandardCardTermsFooter; }; /** The above are just suggested layouts and examples of how the card can be used. Customize at your own discretion. You'll want to use `` Whenever the content of the card may change and cause the height of the card to change. Ei: Error messages, collapsable content, etc. --- **Card: Persistent** ```js import Card from '../../base-componets' ... // Optional // Optional Body content goes here! {}} actionHref='/place' onBack={() => {}} backHref='/the-past' > ``` **Card: Focused** ```js Body content goes here! ``` **Card: Conditional** ```js Body content goes here! ``` **Card: with Card.LoadingContent** ```js {isLoading ? : } ``` * * @deprecated This component is deprecated and will be removed in a future release. Avoid using it in new code. */ export declare const StandardCard: StandardCardType; export {};