import type { BaseComponent } from "../base";
import type { StackProps } from "./stack";
export interface CountdownStyle {
    type: "date";
    date: string;
}
export interface CountdownProps extends BaseComponent {
    type: "countdown";
    visible?: boolean | null;
    style: CountdownStyle;
    countdown_stack: StackProps;
    end_stack: StackProps | null;
}
