import * as i0 from '@angular/core'; import { InjectionToken } from '@angular/core'; import { M as MatCommonModule } from '../common-module.d-C8xzHJDr.js'; import '@angular/cdk/bidi'; type MatCardAppearance = 'outlined' | 'raised'; /** Object that can be used to configure the default options for the card module. */ interface MatCardConfig { /** Default appearance for cards. */ appearance?: MatCardAppearance; } /** Injection token that can be used to provide the default options the card module. */ declare const MAT_CARD_CONFIG: InjectionToken; /** * Material Design card component. Cards contain content and actions about a single subject. * See https://material.io/design/components/cards.html * * MatCard provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCard { appearance: MatCardAppearance; constructor(...args: unknown[]); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** * Title of a card, intended for use within ``. This component is an optional * convenience for one variety of card title; any custom title element may be used in its place. * * MatCardTitle provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardTitle { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Container intended to be used within the `` component. Can contain exactly one * ``, one `` and one content image of any size * (e.g. ``). */ declare class MatCardTitleGroup { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** * Content of a card, intended for use within ``. This component is an optional * convenience for use with other convenience elements, such as ``; any custom * content block element may be used in its place. * * MatCardContent provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardContent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Sub-title of a card, intended for use within `` beneath a ``. This * component is an optional convenience for use with other convenience elements, such as * ``. * * MatCardSubtitle provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardSubtitle { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Bottom area of a card that contains action buttons, intended for use within ``. * This component is an optional convenience for use with other convenience elements, such as * ``; any custom action block element may be used in its place. * * MatCardActions provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardActions { /** Position of the actions inside the card. */ align: 'start' | 'end'; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Header region of a card, intended for use within ``. This header captures * a card title, subtitle, and avatar. This component is an optional convenience for use with * other convenience elements, such as ``; any custom header block element may be * used in its place. * * MatCardHeader provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardHeader { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** * Footer area a card, intended for use within ``. * This component is an optional convenience for use with other convenience elements, such as * ``; any custom footer block element may be used in its place. * * MatCardFooter provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardFooter { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Primary image content for a card, intended for use within ``. Can be applied to * any media element, such as `` or ``. * * This component is an optional convenience for use with other convenience elements, such as * ``; any custom media element may be used in its place. * * MatCardImage provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardImage { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** Same as `MatCardImage`, but small. */ declare class MatCardSmImage { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** Same as `MatCardImage`, but medium. */ declare class MatCardMdImage { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** Same as `MatCardImage`, but large. */ declare class MatCardLgImage { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** Same as `MatCardImage`, but extra-large. */ declare class MatCardXlImage { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Avatar image content for a card, intended for use within ``. Can be applied to * any media element, such as `` or ``. * * This component is an optional convenience for use with other convenience elements, such as * ``; any custom media element may be used in its place. * * MatCardAvatar provides no behaviors, instead serving as a purely visual treatment. */ declare class MatCardAvatar { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } declare class MatCardModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { MAT_CARD_CONFIG, MatCard, MatCardActions, MatCardAvatar, MatCardContent, MatCardFooter, MatCardHeader, MatCardImage, MatCardLgImage, MatCardMdImage, MatCardModule, MatCardSmImage, MatCardSubtitle, MatCardTitle, MatCardTitleGroup, MatCardXlImage }; export type { MatCardAppearance, MatCardConfig };