import type { NTTheme, NTStyles } from '../../../types'; interface StyleProps { color?: keyof NTTheme['colors']; size?: 'default' | 'small'; disabled?: boolean; } declare const createStyles: (theme: NTTheme, props: StyleProps) => NTStyles; export { createStyles };