import type AuAccordion from '#src/components/au-accordion'; import type AuAlert from '#src/components/au-alert'; import type AuApp from '#src/components/au-app'; import type AuBadge from '#src/components/au-badge'; import type AuBodyContainer from '#src/components/au-body-container'; import type AuBrand from '#src/components/au-brand'; import type AuButtonGroup from '#src/components/au-button-group'; import type AuButton from '#src/components/au-button'; import type AuCard from '#src/components/au-card'; import type AuCheckbox from '#src/components/au-checkbox'; import type AuCheckboxGroup from '#src/components/au-checkbox-group'; import type AuContentHeader from '#src/components/au-content-header'; import type AuContent from '#src/components/au-content'; import type AuDateInput from '#src/components/au-date-input'; import type AuDatePicker from '#src/components/au-date-picker'; import type AuDropdown from '#src/components/au-dropdown'; import type AuFieldset from '#src/components/au-fieldset'; import type AuFileCard from '#src/components/au-file-card'; import type AuFileUpload from '#src/components/au-file-upload'; import type AuFormRow from '#src/components/au-form-row'; import type AuHeading from '#src/components/au-heading'; import type AuHelpText from '#src/components/au-help-text'; import type AuHr from '#src/components/au-hr'; import type AuIcon from '#src/components/au-icon'; import type AuInput from '#src/components/au-input'; import type AuLabel from '#src/components/au-label'; import type AuLinkExternal from '#src/components/au-link-external'; import type AuLink from '#src/components/au-link'; import type AuList from '#src/components/au-list'; import type AuLoader from '#src/components/au-loader'; import type AuMainContainer from '#src/components/au-main-container'; import type AuMainFooter from '#src/components/au-main-footer'; import type AuMainHeader from '#src/components/au-main-header'; import type AuModalContainer from '#src/components/au-modal-container'; import type AuModal from '#src/components/au-modal'; import type AuNavigationLink from '#src/components/au-navigation-link'; import type AuPanel from '#src/components/au-panel'; import type AuPill from '#src/components/au-pill'; import type AuRadioGroup from '#src/components/au-radio-group'; import type AuRadio from '#src/components/au-radio'; import type AuTable from '#src/components/au-table'; import type AuTabs from '#src/components/au-tabs'; import type AuTextarea from '#src/components/au-textarea'; import type AuTimePicker from '#src/components/au-time-picker'; import type AuToggleSwitch from '#src/components/au-toggle-switch'; import type AuToolbar from '#src/components/au-toolbar'; import type AuTooltip from '#src/components/au-tooltip'; import type AuDateInputModifier from '#src/modifiers/au-date-input.ts'; import type AuInputMaskModifier from '#src/modifiers/au-inputmask.ts'; export default interface AppuniversumRegistry { AuAccordion: typeof AuAccordion; AuAlert: typeof AuAlert; AuApp: typeof AuApp; AuBadge: typeof AuBadge; AuBodyContainer: typeof AuBodyContainer; AuBrand: typeof AuBrand; AuButtonGroup: typeof AuButtonGroup; AuButton: typeof AuButton; AuCard: typeof AuCard; AuCheckbox: typeof AuCheckbox; AuCheckboxGroup: typeof AuCheckboxGroup; AuContentHeader: typeof AuContentHeader; AuContent: typeof AuContent; AuDateInput: typeof AuDateInput; AuDatePicker: typeof AuDatePicker; AuDropdown: typeof AuDropdown; AuFieldset: typeof AuFieldset; AuFileCard: typeof AuFileCard; AuFileUpload: typeof AuFileUpload; AuFormRow: typeof AuFormRow; AuHeading: typeof AuHeading; AuHelpText: typeof AuHelpText; AuHr: typeof AuHr; AuIcon: typeof AuIcon; AuInput: typeof AuInput; AuLabel: typeof AuLabel; AuLinkExternal: typeof AuLinkExternal; AuLink: typeof AuLink; AuList: typeof AuList; AuLoader: typeof AuLoader; AuMainContainer: typeof AuMainContainer; AuMainFooter: typeof AuMainFooter; AuMainHeader: typeof AuMainHeader; AuModalContainer: typeof AuModalContainer; AuModal: typeof AuModal; AuNavigationLink: typeof AuNavigationLink; AuPanel: typeof AuPanel; AuPill: typeof AuPill; AuRadioGroup: typeof AuRadioGroup; AuRadio: typeof AuRadio; AuTable: typeof AuTable; AuTabs: typeof AuTabs; AuTextarea: typeof AuTextarea; AuTimePicker: typeof AuTimePicker; AuToggleSwitch: typeof AuToggleSwitch; AuToolbar: typeof AuToolbar; AuTooltip: typeof AuTooltip; 'au-date-input': typeof AuDateInputModifier; 'au-inputmask': typeof AuInputMaskModifier; } //# sourceMappingURL=template-registry.d.ts.map