export type DialogAnimationArgs = Parameters; export interface DialogAnimation { /** * Animations for the dialog itself. */ dialog?: DialogAnimationArgs[]; /** * Animations for the scrim backdrop. */ scrim?: DialogAnimationArgs[]; /** * Animations for the container of the dialog. */ container?: DialogAnimationArgs[]; /** * Animations for the headline section. */ headline?: DialogAnimationArgs[]; /** * Animations for the contents section. */ content?: DialogAnimationArgs[]; /** * Animations for the actions section. */ actions?: DialogAnimationArgs[]; } /** * The default dialog open animation. */ export declare const DIALOG_DEFAULT_OPEN_ANIMATION: DialogAnimation; /** * The default dialog close animation. */ export declare const DIALOG_DEFAULT_CLOSE_ANIMATION: DialogAnimation; //# sourceMappingURL=animation.d.ts.map