import type { Action } from 'svelte/action';
import type { HtmlIngredientProps } from '../types.js';
export interface DatePickerContentProps extends HtmlIngredientProps<'div', HTMLDivElement, never, Action> {
}
declare const DatePickerContent: import("svelte").Component<DatePickerContentProps, {}, "ref">;
type DatePickerContent = ReturnType<typeof DatePickerContent>;
export default DatePickerContent;
