import type { DateUtility, ParseError, Segment, TimestampValue } from '../parsers/types.js';
type Acceptable = TimestampValue | DateUtility;
export declare function timestampAnalyzer(seg: Segment, { allowBoolean }: {
    allowBoolean?: boolean;
}): {
    parsed: boolean | Acceptable[] | DateUtility | undefined;
    errors: ParseError[];
};
export {};
