jswm
Version:
Virtual Window for React
14 lines (13 loc) • 468 B
TypeScript
interface ItemColumnProps {
width: number;
}
interface StyleProps {
left: number;
}
export declare const Root: import("styled-components").StyledComponent<"div", any, StyleProps, never>;
export declare const ItemColumn: import("styled-components").StyledComponent<"div", any, ItemColumnProps, never>;
interface ItemProps {
widthPos: string;
}
export declare const Item: import("styled-components").StyledComponent<"div", any, ItemProps, never>;
export {};