fui-fancyui
Version:
FancyUI Libary
16 lines (15 loc) • 995 B
TypeScript
import { CSSProp } from 'styled-components';
import { TVirtualScrollProps } from './TVirtualScroll.model';
import { TStyledPrefixAndPicker } from '../../../types/TStyledPrefixAndPicker';
type TWrapper = TStyledPrefixAndPicker<TVirtualScrollProps, 'containerHeight' | 'scrollSnap'> & {
$externalStyle?: CSSProp;
$scrollBehaviorOn?: boolean;
};
export declare const Wrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, TWrapper>> & string;
type TItem = {
$itemHeight: string;
$enableScrollSnap: boolean;
$externalStyle?: CSSProp;
};
export declare const Item: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, TItem>> & string;
export {};