/** * Generates a unique ID for picker components. * Uses the provided ID if available, otherwise generates a unique ID. * @param id - Optional ID prop * @returns A string ID that is always defined and unique */ export declare function getDatePickerId(id?: string | number): string; export declare function leftPad(str: string | number, length: number, fill?: string): string; export declare const tuple: (...args: T) => T; export declare function toArray(val: T | T[]): T[]; export default function getDataOrAriaProps(props: any): any; export declare function getValue(values: null | undefined | (T | null)[], index: number): T | null; declare type UpdateValue = (prev: T) => T; export declare function updateValues(values: [T | null, T | null] | null, value: T | UpdateValue, index: number): R; export {};