declare interface AppBarVariant { /** * @default "cupertino" */ theme: "cupertino" | "android"; /** * @default "slideFromRightIOS" */ transitionStyle: "slideFromRightIOS" | "fadeFromBottomAndroid" | "fadeIn"; /** * @default "layer" */ tone: "layer" | "transparent"; } declare type AppBarVariantMap = { [key in keyof AppBarVariant]: Array; }; export declare type AppBarVariantProps = Partial; export declare type AppBarSlotName = "root" | "background" | "left" | "right" | "iconButton" | "icon" | "custom"; export declare const appBarVariantMap: AppBarVariantMap; export declare const appBar: (( props?: AppBarVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [AppBarVariantProps, Omit]; }