import { ExtractProps } from '@workday/canvas-kit-react/common';
import { Box } from '@workday/canvas-kit-react/layout';
import { CSProps } from '@workday/canvas-kit-styling';
export interface StyledRadioButtonProps extends CSProps {
    variant?: 'inverse' | undefined;
}
export interface StyledRadioButtonProps extends ExtractProps<typeof Box, 'input'> {
    variant?: 'inverse' | undefined;
}
/**
 * Use `StyledRadioButton` when you want a styled radio button on its own without using `RadioGroup`.
 * You will need to handle behavior and accessibility.
 */
export declare const StyledRadioButton: import("@workday/canvas-kit-react/common").ElementComponent<"input", StyledRadioButtonProps>;
//# sourceMappingURL=StyledRadioButton.d.ts.map