import { ComponentType } from "@angular/cdk/portal"; export declare class PadToastConfig { /** * toast time to live in milliseconds * default: 5000 */ timeout: number; /** * Angular toast component to be shown * default: Toast */ component: ComponentType; /** * animation ease time on toast * default: 300 */ easeTime: number; /** * animation easing on toast * default: ease-in */ easing: string; }