declare const SecondsBrand: unique symbol;
export type Seconds = number & {
    readonly [SecondsBrand]: "s";
};
export declare const seconds: (value: number) => Seconds;
export {};
