amis-rpc-design/node_modules/react-pro-sidebar/dist/styles/StyledExpandIcon.d.ts
2023-10-07 19:42:30 +08:00

26 lines
1.3 KiB
TypeScript

/// <reference types="react" />
import { CSSObject } from '@emotion/styled';
interface StyledExpandIconProps {
open?: boolean;
rtl?: boolean;
}
interface StyledExpandIconWrapperProps {
collapsed?: boolean;
level?: number;
rtl?: boolean;
rootStyles?: CSSObject;
}
export declare const StyledExpandIconWrapper: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any> | undefined;
} & StyledExpandIconWrapperProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
export declare const StyledExpandIcon: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any> | undefined;
} & StyledExpandIconProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
export declare const StyledExpandIconCollapsed: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any> | undefined;
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
export {};