import { ReactNode } from 'react';
interface Props {
    /** Displays after `children`; typically a [Link](/?path=/docs/link--basic) */
    action: ReactNode;
    /** Displays before `children`; should be a [Badge](/?path=/docs/badge--basic) */
    badge?: ReactNode;
    children: string;
}
export declare const OutlineCTA: {
    ({ action, badge, children, ...rest }: Props): JSX.Element;
    defaultProps: {
        badge: any;
    };
};
export {};
//# sourceMappingURL=OutlineCTA.d.ts.map