@octoguide/mui-ui-toolkit 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -26,6 +26,7 @@ import { DateTimeFieldProps as DateTimeFieldProps$1 } from '@mui/x-date-pickers/
26
26
  import { StaticDateTimePickerProps as StaticDateTimePickerProps$1 } from '@mui/x-date-pickers/StaticDateTimePicker';
27
27
  import { DateCalendarProps as DateCalendarProps$1 } from '@mui/x-date-pickers/DateCalendar';
28
28
  import { Dayjs } from 'dayjs';
29
+ import { PaginationProps as PaginationProps$1 } from '@mui/material/Pagination';
29
30
  export { default as AvatarGroup, AvatarGroupProps } from '@mui/material/AvatarGroup';
30
31
 
31
32
  /**
@@ -776,6 +777,74 @@ interface LinkProps extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>,
776
777
  }
777
778
  declare const Link: React.ForwardRefExoticComponent<LinkProps & React.RefAttributes<HTMLAnchorElement>>;
778
779
 
780
+ interface LogoLinkProps extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'href'> {
781
+ /** Logo content — pass an `<img>`, inline SVG, or any React node */
782
+ children: React.ReactNode;
783
+ /** Link destination, defaults to '/' */
784
+ href?: string;
785
+ /** Compact height mode (45px instead of 55px) */
786
+ isSmall?: boolean;
787
+ /** Accessible title for the link, defaults to 'Home' */
788
+ title?: string;
789
+ /** Swap the rendered element — pass a React Router `<Link>` or similar */
790
+ component?: React.ElementType;
791
+ }
792
+ declare const LogoLink: React.ForwardRefExoticComponent<LogoLinkProps & React.RefAttributes<HTMLAnchorElement>>;
793
+
794
+ interface PageSpinnerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'role'> {
795
+ /** Loading message shown below the spinner */
796
+ message?: string;
797
+ /** Override the visible message with a React node (the `message` prop is still announced to screen readers) */
798
+ customMessageLayout?: React.ReactNode;
799
+ /** Use light-on-dark colour scheme */
800
+ isOnDarkBg?: boolean;
801
+ /** Additional screen reader text when no visible message is needed */
802
+ srText?: string;
803
+ /** DOM node to portal into (defaults to document.body) */
804
+ rootNode?: Element;
805
+ /** Aria-live politeness for the screen reader announcement */
806
+ messageTone?: 'assertive' | 'polite';
807
+ }
808
+ declare const PageSpinner: React.ForwardRefExoticComponent<PageSpinnerProps & React.RefAttributes<HTMLDivElement>>;
809
+
810
+ type PaginationVariant = 'text' | 'outlined' | 'soft';
811
+ type PaginationShape = 'circular' | 'rounded';
812
+ type PaginationColor = 'default' | 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'error';
813
+ interface PaginationProps extends Omit<PaginationProps$1, 'variant' | 'color' | 'shape'> {
814
+ /** Visual style variant */
815
+ variant?: PaginationVariant;
816
+ /** Shape of pagination items */
817
+ shape?: PaginationShape;
818
+ /** Color applied to the selected/active item */
819
+ color?: PaginationColor;
820
+ }
821
+ declare const Pagination: React.ForwardRefExoticComponent<Omit<PaginationProps, "ref"> & React.RefAttributes<HTMLElement>>;
822
+
823
+ interface ParagraphProps extends Omit<React.HTMLAttributes<HTMLParagraphElement>, 'color'> {
824
+ /** Visual style variant */
825
+ variant?: 'regular' | 'semibold' | 'bold' | 'overline' | 'primary' | 'secondary';
826
+ /** Renders the correct text colour on a dark background */
827
+ isOnDarkBg?: boolean;
828
+ children: React.ReactNode;
829
+ }
830
+ declare const Paragraph: React.ForwardRefExoticComponent<ParagraphProps & React.RefAttributes<HTMLParagraphElement>>;
831
+
832
+ type SpinnerSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
833
+
834
+ interface SpinnerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'role'> {
835
+ /** Size of the spinner */
836
+ size?: SpinnerSize;
837
+ /** Message displayed below (or beside when isInline) the spinner */
838
+ message?: React.ReactNode;
839
+ /** Use light-on-dark colour scheme */
840
+ isOnDarkBg?: boolean;
841
+ /** Screen reader text when no visible message is provided */
842
+ srText?: string;
843
+ /** Display the spinner and message side by side */
844
+ isInline?: boolean;
845
+ }
846
+ declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<HTMLDivElement>>;
847
+
779
848
  interface ToggleProps extends Omit<React.HTMLAttributes<HTMLFieldSetElement>, 'onChange'> {
780
849
  /** Unique name for the radio inputs */
781
850
  name: string;
@@ -836,93 +905,54 @@ declare const TableSortLabel: _mui_material.ExtendButtonBase<_mui_material.Table
836
905
 
837
906
  interface H1Props extends Omit<TypographyProps, 'variant'> {
838
907
  }
839
- declare function H1({ color, children, ...props }: H1Props): react_jsx_runtime.JSX.Element;
840
- declare namespace H1 {
841
- var displayName: string;
842
- }
908
+ declare const H1: React.ForwardRefExoticComponent<Omit<H1Props, "ref"> & React.RefAttributes<HTMLElement>>;
843
909
 
844
910
  interface H2Props extends Omit<TypographyProps, 'variant'> {
845
911
  }
846
- declare function H2({ color, children, ...props }: H2Props): react_jsx_runtime.JSX.Element;
847
- declare namespace H2 {
848
- var displayName: string;
849
- }
912
+ declare const H2: React.ForwardRefExoticComponent<Omit<H2Props, "ref"> & React.RefAttributes<HTMLElement>>;
850
913
 
851
914
  interface H3Props extends Omit<TypographyProps, 'variant'> {
852
915
  }
853
- declare function H3({ color, children, ...props }: H3Props): react_jsx_runtime.JSX.Element;
854
- declare namespace H3 {
855
- var displayName: string;
856
- }
916
+ declare const H3: React.ForwardRefExoticComponent<Omit<H3Props, "ref"> & React.RefAttributes<HTMLElement>>;
857
917
 
858
918
  interface H4Props extends Omit<TypographyProps, 'variant'> {
859
919
  }
860
- declare function H4({ color, children, ...props }: H4Props): react_jsx_runtime.JSX.Element;
861
- declare namespace H4 {
862
- var displayName: string;
863
- }
920
+ declare const H4: React.ForwardRefExoticComponent<Omit<H4Props, "ref"> & React.RefAttributes<HTMLElement>>;
864
921
 
865
922
  interface H5Props extends Omit<TypographyProps, 'variant'> {
866
923
  }
867
- declare function H5({ color, children, ...props }: H5Props): react_jsx_runtime.JSX.Element;
868
- declare namespace H5 {
869
- var displayName: string;
870
- }
924
+ declare const H5: React.ForwardRefExoticComponent<Omit<H5Props, "ref"> & React.RefAttributes<HTMLElement>>;
871
925
 
872
926
  interface H6Props extends Omit<TypographyProps, 'variant'> {
873
927
  }
874
- declare function H6({ color, children, ...props }: H6Props): react_jsx_runtime.JSX.Element;
875
- declare namespace H6 {
876
- var displayName: string;
877
- }
928
+ declare const H6: React.ForwardRefExoticComponent<Omit<H6Props, "ref"> & React.RefAttributes<HTMLElement>>;
878
929
 
879
930
  interface Subtitle1Props extends Omit<TypographyProps, 'variant'> {
880
931
  }
881
- declare function Subtitle1({ color, children, ...props }: Subtitle1Props): react_jsx_runtime.JSX.Element;
882
- declare namespace Subtitle1 {
883
- var displayName: string;
884
- }
932
+ declare const Subtitle1: React.ForwardRefExoticComponent<Omit<Subtitle1Props, "ref"> & React.RefAttributes<HTMLElement>>;
885
933
 
886
934
  interface Subtitle2Props extends Omit<TypographyProps, 'variant'> {
887
935
  }
888
- declare function Subtitle2({ color, children, ...props }: Subtitle2Props): react_jsx_runtime.JSX.Element;
889
- declare namespace Subtitle2 {
890
- var displayName: string;
891
- }
936
+ declare const Subtitle2: React.ForwardRefExoticComponent<Omit<Subtitle2Props, "ref"> & React.RefAttributes<HTMLElement>>;
892
937
 
893
938
  interface Body1Props extends Omit<TypographyProps, 'variant'> {
894
939
  }
895
- declare function Body1({ color, children, ...props }: Body1Props): react_jsx_runtime.JSX.Element;
896
- declare namespace Body1 {
897
- var displayName: string;
898
- }
940
+ declare const Body1: React.ForwardRefExoticComponent<Omit<Body1Props, "ref"> & React.RefAttributes<HTMLElement>>;
899
941
 
900
942
  interface Body2Props extends Omit<TypographyProps, 'variant'> {
901
943
  }
902
- declare function Body2({ color, children, ...props }: Body2Props): react_jsx_runtime.JSX.Element;
903
- declare namespace Body2 {
904
- var displayName: string;
905
- }
944
+ declare const Body2: React.ForwardRefExoticComponent<Omit<Body2Props, "ref"> & React.RefAttributes<HTMLElement>>;
906
945
 
907
946
  interface CaptionProps extends Omit<TypographyProps, 'variant'> {
908
947
  }
909
- declare function Caption({ color, children, ...props }: CaptionProps): react_jsx_runtime.JSX.Element;
910
- declare namespace Caption {
911
- var displayName: string;
912
- }
948
+ declare const Caption: React.ForwardRefExoticComponent<Omit<CaptionProps, "ref"> & React.RefAttributes<HTMLElement>>;
913
949
 
914
950
  interface OverlineProps extends Omit<TypographyProps, 'variant'> {
915
951
  }
916
- declare function Overline({ color, children, ...props }: OverlineProps): react_jsx_runtime.JSX.Element;
917
- declare namespace Overline {
918
- var displayName: string;
919
- }
952
+ declare const Overline: React.ForwardRefExoticComponent<Omit<OverlineProps, "ref"> & React.RefAttributes<HTMLElement>>;
920
953
 
921
954
  interface TypographyButtonProps extends Omit<TypographyProps, 'variant'> {
922
955
  }
923
- declare function TypographyButton({ color, children, ...props }: TypographyButtonProps): react_jsx_runtime.JSX.Element;
924
- declare namespace TypographyButton {
925
- var displayName: string;
926
- }
956
+ declare const TypographyButton: React.ForwardRefExoticComponent<Omit<TypographyButtonProps, "ref"> & React.RefAttributes<HTMLElement>>;
927
957
 
928
- export { ABNInput, type ABNInputProps, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, Alert, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, type AvatarProps, type AvatarSize, Body1, type Body1Props, Body2, type Body2Props, type BorderRadiusTokens, Button, type ButtonProps, Caption, type CaptionProps, Card, CardActions, CardContent, CardHeader, type CardProps, Chip, type ChipProps, type ColorTokens, type ComponentTokens, DateCalendar, type DateCalendarProps, DateField, type DateFieldProps, DateLocalizationProvider, type DateLocalizationProviderProps, DatePicker, type DatePickerProps, DateRangePickerCalendar, type DateRangePickerCalendarProps, DateRangePickerInput, type DateRangePickerInputProps, type DateRangeValue, DateTimeField, type DateTimeFieldProps, DateTimePicker, type DateTimePickerProps, DesktopDatePicker, type DesktopDatePickerProps, DesktopDateTimePicker, type DesktopDateTimePickerProps, DesktopTimePicker, type DesktopTimePickerProps, Grid, type GridProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, H5, type H5Props, H6, type H6Props, InternalLinkItem, type InternalLinkItemProps, Link, type LinkProps, MobileDatePicker, type MobileDatePickerProps, MobileDateTimePicker, type MobileDateTimePickerProps, MobileTimePicker, type MobileTimePickerProps, Overline, type OverlineProps, type ShadowTokens, type SpacingTokens, StandaloneAccordion, StaticDatePicker, type StaticDatePickerProps, StaticDateTimePicker, type StaticDateTimePickerProps, StaticTimePicker, type StaticTimePickerProps, Subtitle1, type Subtitle1Props, Subtitle2, type Subtitle2Props, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableHead, TableHeadCell, type TableHeadProps, TablePagination, type TableProps, TableRow, type TableRowProps, TableSortLabel, TextField, type TextFieldProps, type ThemeName, type ThemeTokens, TimeField, type TimeFieldProps, TimePicker, type TimePickerProps, Toggle, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToolkitThemeProvider, type TransitionTokens, TypographyButton, type TypographyButtonProps, type TypographyTokens, Variant, type ZIndexTokens, createMuiTheme, getThemeTokens, resolveThemeName, themeRegistry };
958
+ export { ABNInput, type ABNInputProps, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, Alert, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, type AvatarProps, type AvatarSize, Body1, type Body1Props, Body2, type Body2Props, type BorderRadiusTokens, Button, type ButtonProps, Caption, type CaptionProps, Card, CardActions, CardContent, CardHeader, type CardProps, Chip, type ChipProps, type ColorTokens, type ComponentTokens, DateCalendar, type DateCalendarProps, DateField, type DateFieldProps, DateLocalizationProvider, type DateLocalizationProviderProps, DatePicker, type DatePickerProps, DateRangePickerCalendar, type DateRangePickerCalendarProps, DateRangePickerInput, type DateRangePickerInputProps, type DateRangeValue, DateTimeField, type DateTimeFieldProps, DateTimePicker, type DateTimePickerProps, DesktopDatePicker, type DesktopDatePickerProps, DesktopDateTimePicker, type DesktopDateTimePickerProps, DesktopTimePicker, type DesktopTimePickerProps, Grid, type GridProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, H5, type H5Props, H6, type H6Props, InternalLinkItem, type InternalLinkItemProps, Link, type LinkProps, LogoLink, type LogoLinkProps, MobileDatePicker, type MobileDatePickerProps, MobileDateTimePicker, type MobileDateTimePickerProps, MobileTimePicker, type MobileTimePickerProps, Overline, type OverlineProps, PageSpinner, type PageSpinnerProps, Pagination, type PaginationColor, type PaginationProps, type PaginationShape, type PaginationVariant, Paragraph, type ParagraphProps, type ShadowTokens, type SpacingTokens, Spinner, type SpinnerProps, type SpinnerSize, StandaloneAccordion, StaticDatePicker, type StaticDatePickerProps, StaticDateTimePicker, type StaticDateTimePickerProps, StaticTimePicker, type StaticTimePickerProps, Subtitle1, type Subtitle1Props, Subtitle2, type Subtitle2Props, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableHead, TableHeadCell, type TableHeadProps, TablePagination, type TableProps, TableRow, type TableRowProps, TableSortLabel, TextField, type TextFieldProps, type ThemeName, type ThemeTokens, TimeField, type TimeFieldProps, TimePicker, type TimePickerProps, Toggle, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToolkitThemeProvider, type TransitionTokens, TypographyButton, type TypographyButtonProps, type TypographyTokens, Variant, type ZIndexTokens, createMuiTheme, getThemeTokens, resolveThemeName, themeRegistry };
package/dist/index.d.ts CHANGED
@@ -26,6 +26,7 @@ import { DateTimeFieldProps as DateTimeFieldProps$1 } from '@mui/x-date-pickers/
26
26
  import { StaticDateTimePickerProps as StaticDateTimePickerProps$1 } from '@mui/x-date-pickers/StaticDateTimePicker';
27
27
  import { DateCalendarProps as DateCalendarProps$1 } from '@mui/x-date-pickers/DateCalendar';
28
28
  import { Dayjs } from 'dayjs';
29
+ import { PaginationProps as PaginationProps$1 } from '@mui/material/Pagination';
29
30
  export { default as AvatarGroup, AvatarGroupProps } from '@mui/material/AvatarGroup';
30
31
 
31
32
  /**
@@ -776,6 +777,74 @@ interface LinkProps extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>,
776
777
  }
777
778
  declare const Link: React.ForwardRefExoticComponent<LinkProps & React.RefAttributes<HTMLAnchorElement>>;
778
779
 
780
+ interface LogoLinkProps extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'href'> {
781
+ /** Logo content — pass an `<img>`, inline SVG, or any React node */
782
+ children: React.ReactNode;
783
+ /** Link destination, defaults to '/' */
784
+ href?: string;
785
+ /** Compact height mode (45px instead of 55px) */
786
+ isSmall?: boolean;
787
+ /** Accessible title for the link, defaults to 'Home' */
788
+ title?: string;
789
+ /** Swap the rendered element — pass a React Router `<Link>` or similar */
790
+ component?: React.ElementType;
791
+ }
792
+ declare const LogoLink: React.ForwardRefExoticComponent<LogoLinkProps & React.RefAttributes<HTMLAnchorElement>>;
793
+
794
+ interface PageSpinnerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'role'> {
795
+ /** Loading message shown below the spinner */
796
+ message?: string;
797
+ /** Override the visible message with a React node (the `message` prop is still announced to screen readers) */
798
+ customMessageLayout?: React.ReactNode;
799
+ /** Use light-on-dark colour scheme */
800
+ isOnDarkBg?: boolean;
801
+ /** Additional screen reader text when no visible message is needed */
802
+ srText?: string;
803
+ /** DOM node to portal into (defaults to document.body) */
804
+ rootNode?: Element;
805
+ /** Aria-live politeness for the screen reader announcement */
806
+ messageTone?: 'assertive' | 'polite';
807
+ }
808
+ declare const PageSpinner: React.ForwardRefExoticComponent<PageSpinnerProps & React.RefAttributes<HTMLDivElement>>;
809
+
810
+ type PaginationVariant = 'text' | 'outlined' | 'soft';
811
+ type PaginationShape = 'circular' | 'rounded';
812
+ type PaginationColor = 'default' | 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'error';
813
+ interface PaginationProps extends Omit<PaginationProps$1, 'variant' | 'color' | 'shape'> {
814
+ /** Visual style variant */
815
+ variant?: PaginationVariant;
816
+ /** Shape of pagination items */
817
+ shape?: PaginationShape;
818
+ /** Color applied to the selected/active item */
819
+ color?: PaginationColor;
820
+ }
821
+ declare const Pagination: React.ForwardRefExoticComponent<Omit<PaginationProps, "ref"> & React.RefAttributes<HTMLElement>>;
822
+
823
+ interface ParagraphProps extends Omit<React.HTMLAttributes<HTMLParagraphElement>, 'color'> {
824
+ /** Visual style variant */
825
+ variant?: 'regular' | 'semibold' | 'bold' | 'overline' | 'primary' | 'secondary';
826
+ /** Renders the correct text colour on a dark background */
827
+ isOnDarkBg?: boolean;
828
+ children: React.ReactNode;
829
+ }
830
+ declare const Paragraph: React.ForwardRefExoticComponent<ParagraphProps & React.RefAttributes<HTMLParagraphElement>>;
831
+
832
+ type SpinnerSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
833
+
834
+ interface SpinnerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'role'> {
835
+ /** Size of the spinner */
836
+ size?: SpinnerSize;
837
+ /** Message displayed below (or beside when isInline) the spinner */
838
+ message?: React.ReactNode;
839
+ /** Use light-on-dark colour scheme */
840
+ isOnDarkBg?: boolean;
841
+ /** Screen reader text when no visible message is provided */
842
+ srText?: string;
843
+ /** Display the spinner and message side by side */
844
+ isInline?: boolean;
845
+ }
846
+ declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<HTMLDivElement>>;
847
+
779
848
  interface ToggleProps extends Omit<React.HTMLAttributes<HTMLFieldSetElement>, 'onChange'> {
780
849
  /** Unique name for the radio inputs */
781
850
  name: string;
@@ -836,93 +905,54 @@ declare const TableSortLabel: _mui_material.ExtendButtonBase<_mui_material.Table
836
905
 
837
906
  interface H1Props extends Omit<TypographyProps, 'variant'> {
838
907
  }
839
- declare function H1({ color, children, ...props }: H1Props): react_jsx_runtime.JSX.Element;
840
- declare namespace H1 {
841
- var displayName: string;
842
- }
908
+ declare const H1: React.ForwardRefExoticComponent<Omit<H1Props, "ref"> & React.RefAttributes<HTMLElement>>;
843
909
 
844
910
  interface H2Props extends Omit<TypographyProps, 'variant'> {
845
911
  }
846
- declare function H2({ color, children, ...props }: H2Props): react_jsx_runtime.JSX.Element;
847
- declare namespace H2 {
848
- var displayName: string;
849
- }
912
+ declare const H2: React.ForwardRefExoticComponent<Omit<H2Props, "ref"> & React.RefAttributes<HTMLElement>>;
850
913
 
851
914
  interface H3Props extends Omit<TypographyProps, 'variant'> {
852
915
  }
853
- declare function H3({ color, children, ...props }: H3Props): react_jsx_runtime.JSX.Element;
854
- declare namespace H3 {
855
- var displayName: string;
856
- }
916
+ declare const H3: React.ForwardRefExoticComponent<Omit<H3Props, "ref"> & React.RefAttributes<HTMLElement>>;
857
917
 
858
918
  interface H4Props extends Omit<TypographyProps, 'variant'> {
859
919
  }
860
- declare function H4({ color, children, ...props }: H4Props): react_jsx_runtime.JSX.Element;
861
- declare namespace H4 {
862
- var displayName: string;
863
- }
920
+ declare const H4: React.ForwardRefExoticComponent<Omit<H4Props, "ref"> & React.RefAttributes<HTMLElement>>;
864
921
 
865
922
  interface H5Props extends Omit<TypographyProps, 'variant'> {
866
923
  }
867
- declare function H5({ color, children, ...props }: H5Props): react_jsx_runtime.JSX.Element;
868
- declare namespace H5 {
869
- var displayName: string;
870
- }
924
+ declare const H5: React.ForwardRefExoticComponent<Omit<H5Props, "ref"> & React.RefAttributes<HTMLElement>>;
871
925
 
872
926
  interface H6Props extends Omit<TypographyProps, 'variant'> {
873
927
  }
874
- declare function H6({ color, children, ...props }: H6Props): react_jsx_runtime.JSX.Element;
875
- declare namespace H6 {
876
- var displayName: string;
877
- }
928
+ declare const H6: React.ForwardRefExoticComponent<Omit<H6Props, "ref"> & React.RefAttributes<HTMLElement>>;
878
929
 
879
930
  interface Subtitle1Props extends Omit<TypographyProps, 'variant'> {
880
931
  }
881
- declare function Subtitle1({ color, children, ...props }: Subtitle1Props): react_jsx_runtime.JSX.Element;
882
- declare namespace Subtitle1 {
883
- var displayName: string;
884
- }
932
+ declare const Subtitle1: React.ForwardRefExoticComponent<Omit<Subtitle1Props, "ref"> & React.RefAttributes<HTMLElement>>;
885
933
 
886
934
  interface Subtitle2Props extends Omit<TypographyProps, 'variant'> {
887
935
  }
888
- declare function Subtitle2({ color, children, ...props }: Subtitle2Props): react_jsx_runtime.JSX.Element;
889
- declare namespace Subtitle2 {
890
- var displayName: string;
891
- }
936
+ declare const Subtitle2: React.ForwardRefExoticComponent<Omit<Subtitle2Props, "ref"> & React.RefAttributes<HTMLElement>>;
892
937
 
893
938
  interface Body1Props extends Omit<TypographyProps, 'variant'> {
894
939
  }
895
- declare function Body1({ color, children, ...props }: Body1Props): react_jsx_runtime.JSX.Element;
896
- declare namespace Body1 {
897
- var displayName: string;
898
- }
940
+ declare const Body1: React.ForwardRefExoticComponent<Omit<Body1Props, "ref"> & React.RefAttributes<HTMLElement>>;
899
941
 
900
942
  interface Body2Props extends Omit<TypographyProps, 'variant'> {
901
943
  }
902
- declare function Body2({ color, children, ...props }: Body2Props): react_jsx_runtime.JSX.Element;
903
- declare namespace Body2 {
904
- var displayName: string;
905
- }
944
+ declare const Body2: React.ForwardRefExoticComponent<Omit<Body2Props, "ref"> & React.RefAttributes<HTMLElement>>;
906
945
 
907
946
  interface CaptionProps extends Omit<TypographyProps, 'variant'> {
908
947
  }
909
- declare function Caption({ color, children, ...props }: CaptionProps): react_jsx_runtime.JSX.Element;
910
- declare namespace Caption {
911
- var displayName: string;
912
- }
948
+ declare const Caption: React.ForwardRefExoticComponent<Omit<CaptionProps, "ref"> & React.RefAttributes<HTMLElement>>;
913
949
 
914
950
  interface OverlineProps extends Omit<TypographyProps, 'variant'> {
915
951
  }
916
- declare function Overline({ color, children, ...props }: OverlineProps): react_jsx_runtime.JSX.Element;
917
- declare namespace Overline {
918
- var displayName: string;
919
- }
952
+ declare const Overline: React.ForwardRefExoticComponent<Omit<OverlineProps, "ref"> & React.RefAttributes<HTMLElement>>;
920
953
 
921
954
  interface TypographyButtonProps extends Omit<TypographyProps, 'variant'> {
922
955
  }
923
- declare function TypographyButton({ color, children, ...props }: TypographyButtonProps): react_jsx_runtime.JSX.Element;
924
- declare namespace TypographyButton {
925
- var displayName: string;
926
- }
956
+ declare const TypographyButton: React.ForwardRefExoticComponent<Omit<TypographyButtonProps, "ref"> & React.RefAttributes<HTMLElement>>;
927
957
 
928
- export { ABNInput, type ABNInputProps, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, Alert, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, type AvatarProps, type AvatarSize, Body1, type Body1Props, Body2, type Body2Props, type BorderRadiusTokens, Button, type ButtonProps, Caption, type CaptionProps, Card, CardActions, CardContent, CardHeader, type CardProps, Chip, type ChipProps, type ColorTokens, type ComponentTokens, DateCalendar, type DateCalendarProps, DateField, type DateFieldProps, DateLocalizationProvider, type DateLocalizationProviderProps, DatePicker, type DatePickerProps, DateRangePickerCalendar, type DateRangePickerCalendarProps, DateRangePickerInput, type DateRangePickerInputProps, type DateRangeValue, DateTimeField, type DateTimeFieldProps, DateTimePicker, type DateTimePickerProps, DesktopDatePicker, type DesktopDatePickerProps, DesktopDateTimePicker, type DesktopDateTimePickerProps, DesktopTimePicker, type DesktopTimePickerProps, Grid, type GridProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, H5, type H5Props, H6, type H6Props, InternalLinkItem, type InternalLinkItemProps, Link, type LinkProps, MobileDatePicker, type MobileDatePickerProps, MobileDateTimePicker, type MobileDateTimePickerProps, MobileTimePicker, type MobileTimePickerProps, Overline, type OverlineProps, type ShadowTokens, type SpacingTokens, StandaloneAccordion, StaticDatePicker, type StaticDatePickerProps, StaticDateTimePicker, type StaticDateTimePickerProps, StaticTimePicker, type StaticTimePickerProps, Subtitle1, type Subtitle1Props, Subtitle2, type Subtitle2Props, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableHead, TableHeadCell, type TableHeadProps, TablePagination, type TableProps, TableRow, type TableRowProps, TableSortLabel, TextField, type TextFieldProps, type ThemeName, type ThemeTokens, TimeField, type TimeFieldProps, TimePicker, type TimePickerProps, Toggle, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToolkitThemeProvider, type TransitionTokens, TypographyButton, type TypographyButtonProps, type TypographyTokens, Variant, type ZIndexTokens, createMuiTheme, getThemeTokens, resolveThemeName, themeRegistry };
958
+ export { ABNInput, type ABNInputProps, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, Alert, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, type AvatarProps, type AvatarSize, Body1, type Body1Props, Body2, type Body2Props, type BorderRadiusTokens, Button, type ButtonProps, Caption, type CaptionProps, Card, CardActions, CardContent, CardHeader, type CardProps, Chip, type ChipProps, type ColorTokens, type ComponentTokens, DateCalendar, type DateCalendarProps, DateField, type DateFieldProps, DateLocalizationProvider, type DateLocalizationProviderProps, DatePicker, type DatePickerProps, DateRangePickerCalendar, type DateRangePickerCalendarProps, DateRangePickerInput, type DateRangePickerInputProps, type DateRangeValue, DateTimeField, type DateTimeFieldProps, DateTimePicker, type DateTimePickerProps, DesktopDatePicker, type DesktopDatePickerProps, DesktopDateTimePicker, type DesktopDateTimePickerProps, DesktopTimePicker, type DesktopTimePickerProps, Grid, type GridProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, H5, type H5Props, H6, type H6Props, InternalLinkItem, type InternalLinkItemProps, Link, type LinkProps, LogoLink, type LogoLinkProps, MobileDatePicker, type MobileDatePickerProps, MobileDateTimePicker, type MobileDateTimePickerProps, MobileTimePicker, type MobileTimePickerProps, Overline, type OverlineProps, PageSpinner, type PageSpinnerProps, Pagination, type PaginationColor, type PaginationProps, type PaginationShape, type PaginationVariant, Paragraph, type ParagraphProps, type ShadowTokens, type SpacingTokens, Spinner, type SpinnerProps, type SpinnerSize, StandaloneAccordion, StaticDatePicker, type StaticDatePickerProps, StaticDateTimePicker, type StaticDateTimePickerProps, StaticTimePicker, type StaticTimePickerProps, Subtitle1, type Subtitle1Props, Subtitle2, type Subtitle2Props, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableHead, TableHeadCell, type TableHeadProps, TablePagination, type TableProps, TableRow, type TableRowProps, TableSortLabel, TextField, type TextFieldProps, type ThemeName, type ThemeTokens, TimeField, type TimeFieldProps, TimePicker, type TimePickerProps, Toggle, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToolkitThemeProvider, type TransitionTokens, TypographyButton, type TypographyButtonProps, type TypographyTokens, Variant, type ZIndexTokens, createMuiTheme, getThemeTokens, resolveThemeName, themeRegistry };