export interface Testable {
    testId?: string;
}
export declare const getTestProps: (testId: string | undefined) => {
    accessible?: undefined;
    id?: undefined;
    testId?: undefined;
    accessibilityLabel?: undefined;
} | {
    accessible: boolean;
    id: string;
    testId: string;
    accessibilityLabel: string;
};
