import type { FactoryPayload } from '../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/lib' import type { EmotionSx } from '@mantine/emotion' import type { EmotionStyles } from '../emotion/index.mjs' import type { ShadingColor } from '../theme/colors.mjs' import type { Color } from '../theme/theme.mjs' declare module '../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/lib' { interface MantineThemeColorsOverride { colors: Record } interface StylesApiPropsOverride { styles?: EmotionStyles } interface BoxProps { sx?: EmotionSx } } declare module '@mantine/core' { interface MantineThemeColorsOverride { colors: Record } interface StylesApiPropsOverride { styles?: EmotionStyles } interface BoxProps { sx?: EmotionSx } } import { MantineSize, PopoverProps, TimeInputProps } from '../../primitive/index.mjs'; import { DateTimePickerProps } from './types.mjs'; export type { DateTimePickerProps } from './types.mjs'; export { useDateTimePicker } from './helpers.mjs'; export declare const DateTimePicker: ({ placeholder, format, formatter, defaultValue, value, startDate, endDate, onChange, disable, withinPortal, sx, loading, size, footer }: DateTimePickerProps) => import("react/jsx-runtime.js").JSX.Element; export interface TimePickerProps extends Omit, Pick { defaultValue?: string; /** * with format of `HH:mm:ss` */ value?: string; onChange?: (val: string) => void; disable?: boolean; size?: MantineSize; } export declare const TimePicker: ({ value, onChange, defaultValue, disable, sx, size, minTime, maxTime, withinPortal, withArrow, position, shadow, ...rest }: TimePickerProps) => import("react/jsx-runtime.js").JSX.Element;