export interface W9AlertViewProps { states: { alertType: "none" | "warning" | "success"; hideW9Alert: boolean; }; data: { link: string; }; } export declare function W9AlertView(props: W9AlertViewProps): any;