@ucloud-pccl/react-components
Version:
UCloud pccl react components
23 lines (22 loc) • 1.23 kB
TypeScript
import React from 'react';
import { Theme } from 'src/style';
import { ButtonProps } from 'src/components/Button/Button';
import { BreadcrumbProps } from '../Breadcrumb';
export declare const prefixCls: string;
export declare const itemCls: string;
export declare const backBtnCls: string;
export declare const BackButtonWrap: React.ForwardRefExoticComponent<ButtonProps & React.HTMLAttributes<HTMLButtonElement> & {
theme?: Theme | undefined;
} & React.RefAttributes<HTMLButtonElement>>;
export declare const ItemSpan: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & {
theme?: Theme | undefined;
} & React.RefAttributes<HTMLElement>>;
export declare const ItemA: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & {
theme?: Theme | undefined;
} & React.RefAttributes<HTMLElement>>;
export declare const SeparatorWrap: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & {
theme?: Theme | undefined;
} & React.RefAttributes<HTMLElement>>;
export declare const BreadcrumbWrap: React.ForwardRefExoticComponent<Required<Pick<BreadcrumbProps, "styleType">> & React.HTMLAttributes<HTMLElement> & {
theme?: Theme | undefined;
} & React.RefAttributes<HTMLElement>>;