export interface AppearanceProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Callback triggered on complete action click
     * @default null
     */
    onCompleteAction: () => void;
}
export default function Appearance(inProps: AppearanceProps): JSX.Element;
