import { AccessibilityProps, StyleProp, ViewStyle } from 'react-native'; import type { AuBECSDebitFormComponent } from '../types'; /** * BECS Debit Form Component Props */ export interface Props extends AccessibilityProps { companyName: string; onComplete(value: AuBECSDebitFormComponent.FormDetails): void; formStyle?: AuBECSDebitFormComponent.Styles; style?: StyleProp; testID?: string; } /** * BECS Debit form component * * @example * ```ts * onComplete(value)} * style={{ width: '100%', height: 500 }} * /> * ``` * @param __namedParameters Props * @returns JSX.Element * @category ReactComponents */ export declare function AuBECSDebitForm({ onComplete, companyName, formStyle, ...props }: Props): JSX.Element;