import { BaseDuckDBType } from './BaseDuckDBType'; import { DuckDBTypeId } from '../DuckDBTypeId'; import { DuckDBTimestampSecondsValue } from '../values'; export declare class DuckDBTimestampSecondsType extends BaseDuckDBType { constructor(alias?: string); static readonly instance: DuckDBTimestampSecondsType; static create(alias?: string): DuckDBTimestampSecondsType; get epoch(): DuckDBTimestampSecondsValue; get max(): DuckDBTimestampSecondsValue; get min(): DuckDBTimestampSecondsValue; get posInf(): DuckDBTimestampSecondsValue; get negInf(): DuckDBTimestampSecondsValue; } export declare const TIMESTAMP_S: DuckDBTimestampSecondsType;