export interface EventDialogClasses { /** Styles applied to the event dialog root element. */ eventDialog: string; /** Styles applied to the event dialog close button element. */ eventDialogCloseButton: string; /** Styles applied to the event dialog header element. */ eventDialogHeader: string; /** Styles applied to the event dialog readonly content element. */ eventDialogReadonlyContent: string; /** Styles applied to the event dialog actions element. */ eventDialogActions: string; /** Styles applied to the event dialog date time container element. */ eventDialogDateTimeContainer: string; /** Styles applied to the event dialog title element. */ eventDialogTitle: string; /** Styles applied to the event dialog resource container element. */ eventDialogResourceContainer: string; /** Styles applied to the event dialog resource legend container element. */ eventDialogResourceLegendContainer: string; /** Styles applied to the event dialog resource legend color element. */ eventDialogResourceLegendColor: string; /** Styles applied to the event dialog resource title element. */ eventDialogResourceTitle: string; /** Styles applied to the event dialog paper element. */ eventDialogPaper: string; /** Styles applied to the event dialog form element. */ eventDialogForm: string; /** Styles applied to the event dialog form actions element. */ eventDialogFormActions: string; /** Styles applied to the event dialog content element. */ eventDialogContent: string; /** Styles applied to the event dialog tab panel element. */ eventDialogTabPanel: string; /** Styles applied to the event dialog tab content element. */ eventDialogTabContent: string; /** Styles applied to the event dialog date time fields container element. */ eventDialogDateTimeFieldsContainer: string; /** Styles applied to the event dialog date time fields row element. */ eventDialogDateTimeFieldsRow: string; /** Styles applied to the event dialog recurrence label container element in the readonly content. */ eventDialogRecurrenceLabelContainer: string; /** Styles applied to the event dialog recurrence selector container element. */ eventDialogRecurrenceSelectorContainer: string; /** Styles applied to the event dialog resource menu item element. */ eventDialogResourceMenuItem: string; /** Styles applied to the event dialog resource menu list subheader element. */ eventDialogResourceMenuListSubheader: string; /** Styles applied to the event dialog resource menu color dot element. */ eventDialogResourceMenuColorDot: string; /** Styles applied to the event dialog resource menu color toggle group element. */ eventDialogResourceMenuColorToggleGroup: string; /** Styles applied to the event dialog resource menu color toggle element. */ eventDialogResourceMenuColorToggle: string; /** Styles applied to the event dialog inline row element. */ eventDialogInlineRow: string; /** Styles applied to the event dialog section header title element. */ eventDialogSectionHeaderTitle: string; /** Styles applied to the event dialog section fieldset element. */ eventDialogSectionFieldset: string; /** Styles applied to the event dialog radio button label element. */ eventDialogRadioButtonLabel: string; /** Styles applied to the event dialog repeat section label element. */ eventDialogRepeatSectionLabel: string; /** Styles applied to the event dialog ends radio group element. */ eventDialogEndsRadioGroup: string; /** Styles applied to the event dialog repeat section fieldset element. */ eventDialogRepeatSectionFieldset: string; /** Styles applied to the event dialog repeat section content element. */ eventDialogRepeatSectionContent: string; /** Styles applied to the event dialog recurrence selector toggle group element. */ eventDialogRecurrenceSelectorToggleGroup: string; /** Styles applied to the event dialog week day selector form group element. */ eventDialogWeekDaySelectorCheckbox: string; /** Styles applied to the event dialog frequency select element. */ eventDialogFrequencySelect: string; /** Styles applied to the event dialog small number field element. */ eventDialogSmallNumberField: string; /** Styles applied to the event dialog tabs container element. */ eventDialogTabsContainer: string; /** Styles applied to the event dialog tab elements. */ eventDialogTab: string; /** Styles applied to the event dialog form divider element. */ eventDialogFormDivider: string; /** Styles applied to the event dialog delete button element. */ eventDialogDeleteButton: string; /** Styles applied to the event dialog save button element. */ eventDialogSaveButton: string; /** Styles applied to the event dialog close action button element. */ eventDialogCloseAction: string; /** Styles applied to the event dialog date time icon element. */ eventDialogDateTimeIcon: string; /** Styles applied to the event dialog date time label element. */ eventDialogDateTimeLabel: string; /** Styles applied to the event dialog recurrence icon element. */ eventDialogRecurrenceIcon: string; /** Styles applied to the event dialog recurrence label element. */ eventDialogRecurrenceLabel: string; /** Styles applied to the event dialog description label element. */ eventDialogDescriptionLabel: string; } export type EventDialogClassKey = keyof EventDialogClasses; export declare const eventDialogClassKeys: EventDialogClassKey[]; export declare const eventDialogSlots: Record;