import React, { FC } from 'react'; interface ButtonContentIconProps { /** Position of the icon. If you want an icon in the center, use ButtonContent and Icon. */ position?: 'left' | 'right'; /** Icon to render, will only render the first Icon passed in. */ children: React.ReactNode; } export declare const ButtonContentIcon: FC; export {};