///
export declare const UiAside: {
new (props: import("@befe/brick-ui-comps").TypeUIAsideProps | Readonly): {
state: import("@befe/brick-ui-comps").TypeUIAsideState;
originWidth: number;
asideRef: {
readonly elem: HTMLDivElement | null;
ref: (node: HTMLDivElement | null) => void;
};
previousFetchingPromise: Promise | null;
nextFetchingPromise: Promise | null;
disposeScrollHandler: (() => void) | null;
actionQueue: {
pushAction(action: () => void, key?: string | undefined): void;
execute(): void;
};
registerAsideEvent: () => void;
componentDidMount(): void;
componentDidUpdate(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillUnmount(): void;
scrollToItem(itemKey: string | number): void;
handleMouseEnter: () => void;
handleMouseLeave: () => void;
handleSelectItem: (itemKey: string | number, item: import("@befe/brick-ui-comps").TypeAsideItem) => void;
render(): import("react/jsx-runtime").JSX.Element;
context: any;
setState(state: import("@befe/brick-ui-comps").TypeUIAsideState | ((prevState: Readonly, props: Readonly) => import("@befe/brick-ui-comps").TypeUIAsideState | Pick | null) | Pick | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
new (props: import("@befe/brick-ui-comps").TypeUIAsideProps, context: any): {
state: import("@befe/brick-ui-comps").TypeUIAsideState;
originWidth: number;
asideRef: {
readonly elem: HTMLDivElement | null;
ref: (node: HTMLDivElement | null) => void;
};
previousFetchingPromise: Promise | null;
nextFetchingPromise: Promise | null;
disposeScrollHandler: (() => void) | null;
actionQueue: {
pushAction(action: () => void, key?: string | undefined): void;
execute(): void;
};
registerAsideEvent: () => void;
componentDidMount(): void;
componentDidUpdate(prevProps: Readonly, prevState: Readonly, snapshot?: any): void;
componentWillUnmount(): void;
scrollToItem(itemKey: string | number): void;
handleMouseEnter: () => void;
handleMouseLeave: () => void;
handleSelectItem: (itemKey: string | number, item: import("@befe/brick-ui-comps").TypeAsideItem) => void;
render(): import("react/jsx-runtime").JSX.Element;
context: any;
setState(state: import("@befe/brick-ui-comps").TypeUIAsideState | ((prevState: Readonly, props: Readonly) => import("@befe/brick-ui-comps").TypeUIAsideState | Pick | null) | Pick | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly & Readonly<{
children?: import("react").ReactNode;
}>;
refs: {
[key: string]: import("react").ReactInstance;
};
shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean;
componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void;
};
getDerivedStateFromProps(nextProps: import("@befe/brick-ui-comps").TypeUIAsideProps, currState: import("@befe/brick-ui-comps").TypeUIAsideState): {
asideItems: import("@befe/brick-ui-comps").TypeAsideItem[];
} | null;
contextType?: import("react").Context | undefined;
};
export type UiAside = InstanceType;