quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
8 lines (7 loc) • 370 B
TypeScript
import { PageInfoProps } from '.';
interface SelectProps extends Pick<PageInfoProps, 'itemsPerPageArray'> {
selectedValue: number;
onSelectedChange: (selectedValue: number) => void;
}
declare const Select: ({ itemsPerPageArray, selectedValue, onSelectedChange, ...props }: SelectProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export default Select;