// TODO: 13211 Investigate why `InstanceType` fails prod builds // export type RcButtonType = InstanceType export type RcButtonType = { focus: () => void; } export type ButtonRoleProps = { primary?: boolean; secondary?: boolean; tertiary?: boolean; link?: boolean; multiAction?: boolean; ghost?: boolean; } export type ButtonSizeProps = { small?: boolean; }