import { PluginImpl } from 'rollup';
type FormatType = keyof typeof import("change-case");
interface InjectDataQaParams {
    include?: string[];
    exclude?: string[];
    format?: FormatType;
    options?: InjectDataQaOptions;
}
interface InjectDataQaOptions {
    disabledStyledComponent?: boolean;
    disabledReactFunctionComponent?: boolean;
}
declare const injectDataQa: PluginImpl<InjectDataQaParams>;
export { injectDataQa };
