export type VelcronOnPressEvent = {
    onPress?: Array<string>;
};
export type VelcronOnLoadEvent = {
    onLoaded?: Array<string>;
};
export type VelcronOnChangedEvent = {
    onChanged?: Array<string>;
};
export type VelcronOnCloseRequestedEvent = {
    onCloseRequested?: Array<string>;
};
export type VelcronOnClosedEvent = {
    onClosed?: Array<string>;
};
export type VelcronEvent = {};
